home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / tcoop.arc / TCOOP2.ARC / TRTEST.MAK < prev    next >
Encoding:
Text File  |  1991-10-26  |  1.1 KB  |  92 lines

  1. .AUTODEPEND
  2.  
  3. #        *Translator Definitions*
  4. CC = tcc +TRTEST.CFG
  5. TASM = TASM
  6. TLINK = tlink
  7.  
  8.  
  9. #        *Implicit Rules*
  10. .c.obj:
  11.   $(CC) -c {$< }
  12.  
  13. .cpp.obj:
  14.   $(CC) -c {$< }
  15.  
  16. .asm.obj:
  17.   $(TASM) {$< }
  18.  
  19.  
  20. #        *List Macros*
  21.  
  22.  
  23. EXE_dependencies =  \
  24.   trtest.obj \
  25.   trsounit.obj \
  26.   rsounit.obj \
  27.   txunit.obj \
  28.   msmouse.obj \
  29.   scrnsty.obj \
  30.   keybrd.obj
  31.  
  32. #        *Explicit Rules*
  33. trtest.exe: trtest.cfg $(EXE_dependencies)
  34.   $(TLINK) /v/s/c @&&|
  35. c:\tcpp\lib\c0s.obj+
  36. trtest.obj+
  37. trsounit.obj+
  38. rsounit.obj+
  39. txunit.obj+
  40. msmouse.obj+
  41. scrnsty.obj+
  42. keybrd.obj
  43. trtest,trtest
  44. c:\tcpp\lib\graphics.lib+
  45. c:\tcpp\lib\emu.lib+
  46. c:\tcpp\lib\maths.lib+
  47. c:\tcpp\lib\cs.lib
  48. |
  49.  
  50.  
  51. #        *Individual File Dependencies*
  52. trtest.obj: trtest.cpp 
  53.  
  54. trsounit.obj: trsounit.cpp 
  55.  
  56. rsounit.obj: rsounit.cpp 
  57.  
  58. txunit.obj: txunit.cpp 
  59.  
  60. msmouse.obj: msmouse.cpp 
  61.  
  62. scrnsty.obj: scrnsty.cpp 
  63.  
  64. keybrd.obj: keybrd.cpp 
  65.  
  66. #        *Compiler Configuration File*
  67. trtest.cfg: trtest.mak
  68.   copy &&|
  69. -v
  70. -O
  71. -Z
  72. -V
  73. -vi-
  74. -wbbf
  75. -wpin
  76. -wamb
  77. -wamp
  78. -wasm
  79. -wpro
  80. -wcln
  81. -wdef
  82. -wsig
  83. -wnod
  84. -wstv
  85. -wucp
  86. -wuse
  87. -IC:\TCPP\INCLUDE
  88. -LC:\TCPP\LIB
  89. | trtest.cfg
  90.  
  91.  
  92.